7 Set compilation debug="true" to insert debugging
8 symbols into the compiled page. Because this
9 affects performance, set this value to true only
12 <compilation debug="true" targetFramework="4.0"/>
14 The <authentication> section enables configuration
15 of the security authentication mode used by
16 ASP.NET to identify an incoming user.
18 <authentication mode="Windows"/>
20 The <customErrors> section enables configuration
21 of what to do if/when an unhandled error occurs
22 during the execution of a request. Specifically,
23 it enables developers to configure html error pages
24 to be displayed in place of a error stack trace.
26 <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
27 <error statusCode="403" redirect="NoAccess.htm" />
28 <error statusCode="404" redirect="FileNotFound.htm" />
31 <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
34 The system.webServer section is required for running ASP.NET AJAX under Internet
35 Information Services 7.0. It is not necessary for previous version of IIS.